home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / lib / steppes.g < prev    next >
Text File  |  1995-05-04  |  604b  |  47 lines

  1. (game-module "steppes"
  2.   (title "The Steppes")
  3.   (blurb "The wide-open spaces")
  4.   (base-module "standard")
  5.   (variants (see-all true))
  6.   )
  7.  
  8. (add t* country-terrain-min 0)
  9. (add t* country-terrain-max 1000)
  10.  
  11. ;;; Uniform land (matches anything with a type called "plains").
  12.  
  13. (area 60 30)
  14.  
  15. (area (terrain (by-name "+" plains)
  16.   "60+"
  17.   "60+"
  18.   "60+"
  19.   "30+2a28+"  ; works around a bug in AI code?
  20.   "60+"
  21.   "60+"
  22.   "60+"
  23.   "60+"
  24.   "60+"
  25.   "60+"
  26.   "60+"
  27.   "60+"
  28.   "60+"
  29.   "60+"
  30.   "60+"
  31.   "60+"
  32.   "60+"
  33.   "60+"
  34.   "60+"
  35.   "60+"
  36.   "60+"
  37.   "60+"
  38.   "60+"
  39.   "60+"
  40.   "60+"
  41.   "60+"
  42.   "60+"
  43.   "60+"
  44.   "60+"
  45.   "60+"
  46. ))
  47.